/* `xs` returns only a ruleset media query */
@media (max-width: 425.98px) {
      .hero .text-content {
        max-width: 600px;
        margin: auto;
        margin-top: var(--spacing-xl);
        margin-bottom: var(--spacing-xxl);
    }

    .heading {
        font-size: 45px !important;
        margin-top: var(--spacing-md);
    }  
}
/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .heading {
        font-size: 50px;
        margin-top: var(--spacing-md);
    }
    .bg-overly {
        display: none;
    }

    .plane {
        display: none;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .navbar .navbar-nav {
        text-align: center;
        width: 100%;
        margin: 1rem 0;
        flex-direction: column;
    }

    .bg-img {
        display: none;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .navbar .container .collapse {
        width: 100%;
    }

    .navbar .container .Buttons {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        flex-direction: column;
    }

    .dropdown-menu,
    .dropdown,
    .dropdown-toggle {
        width: 100%;
    }

    .btn_0,
    .btn_1 {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .hero .text-content {
        max-width: 600px;
        margin: auto;
        margin-top: var(--spacing-xl);
        margin-bottom: var(--spacing-xxl);
    }

    .heading {
        font-size: 64px;
        margin-top: var(--spacing-md);
    }

    .bg-overly {
        display: none;
    }

    .plane {
        display: none;
    }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        text-align: center;
        width: 100%;
        margin: 1rem 0;
        flex-direction: column;
    }

    .section-heading {
        font-size: 40px;
    }

    .bg-img-1 {
        display: none;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .navbar .container .collapse {
        width: 100%;
    }

    .navbar .container .Buttons {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        flex-direction: column;
    }

    .dropdown-menu {
        width: 100%;
    }

    .btn_0,
    .btn_1 {
        width: 100%;
        margin: 0.25rem 0;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
    }

    .hero .text-content {
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .bg-overly {
        display: none;
    }

    .plane {
        display: none;
    }

    .for-p::before {
        display: none;
    }

    .progress-container {
        top: 8px;
        left: 80px;
        right: 0;
    }
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero .text-content {
        max-width: 600px;
        margin: auto;
        margin-top: var(--spacing-xl);
        margin-bottom: var(--spacing-xxl);
    }

    .heading {
        font-size: 64px;
        margin-top: var(--spacing-md);
    }
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    .progress-container {
        top: 316px;
        left: 185px;
    }
}